include

Qt error while including <windows.h>

How can I use windows.h in Qt application? After including it several errors like "c:\Qt\4.4.3\include/QtCore/../../src/corelib/arch/qatomic_windows.h:387: error: declaration of C function 'long int InterlockedCompareExchange(long int*, long int, long int)' conflicts with d:\old\mingw\bin../lib/gcc/mingw32/4.3.3/../../../../include/winb...

Forward declaration include, on top of declaration include (ClassFwd.h + Class.h)

Hi all, In Effective C++ (3rd edition), Scott Meyers, in Item 31, suggests that classes should have, on top of their classic Declaration (.h) and Definition (.cpp) files, a Forward Declaration Include File (fwd.h), which class that do not need the full definition can use, instead of forward declaring themselves. I somewhat see the case...

PHP Include() whole subdirectory with jQuery navigation bar

Hi, I have a subdirectory folder called /lefnav It contains this files: background.jpg demo.html heading_bg.jpg jquery.js navigation.jpg sliding_effect.js styles.css tab_bg.jpg Thumbs.db Thumbs.db/encryptable It actually contains al the elements of this tutorial: http://net.tutsplus.com/tutorials/javascript-ajax/how-to-create-a-moo...

Including headers from custom framework in XCode

Am I supposed to adjust FRAMEWORK_SEARCH_PATHS or HEADER_SEARCH_PATHS when I add custom frameworks to the project? I have MainProject.xcodeproject that links SomeFramework.framework that's simply dragged from "Products" in SomeFramework.xcodeproject to "Link with Binary Libraries" build phase in main project. Framework contains all req...

How can I control the way gcc/g++ automatically includes headers?

I've run into trouble in the past when I've tried porting some C++ code written on Mac OS X to a Linux system, or trying to compile code written against an older version of gcc/g++ with a newer one: It seems that some (older?) versions of gcc/g++ would automatically include some header files for you. For example, code that uses printf ...

Where to put include statements, header or source?

Should I put the includes in the header file or the source file? If the header file contains the include statements, then if I include that header file in my source, then will my source file have all of the included files that were in my header? Or should I just include them in my source file only? ...

Is using INCLUDES script for the header and footer good with SEO?

I wanted to use the INCLUDES script that will grab external html and place it in a page. I was thinking of using this for the header and footer for every page. Is this a good idea? Will it interfere with SEO? I hate to have to change every footer and header on every page if there is an edit. Is there a better approach? Many thanks....

How can I conditionally use a module in Perl?

I want to do something like this in Perl: $Module1="ReportHashFile1"; # ReportHashFile1.pm $Module2="ReportHashFile2"; # ReportHashFile2.pm if(Condition1) { use $Module1; } elsif(Condition2) { use $Module2; } ReportHashFile*.pm contains a package ReportHashFile* . Also how to reference an array inside module based on dynamic mod...

Is there any objective reason not to remove unused default includes from C# program?

Is there any objective reason not to remove unused default includes from C# program? Let's take this hello world project as an example: using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace ConsoleApplication1 { class Program { static void Main(string[] args) { ...

Rails - include and require methods over the modules.

Prawn::Document::Snapshot is a module in the prawn library, so we can include this in our modules. But Prawn::Document::BoundingBox is not a module and it is a class, so how am i suppose to use(include) it in my module? And is inheritance the only way to use that class? ...

include after PHP 404 header returning "Oops! This link appears to be broken."

To make a long story short, I have dynamic pages on a website that display reviews. If there are no reviews associated with a particular city/county/area/etc the mysql query returns 0 rows which triggers the following code: if (!$validRevQuery) { header("HTTP/1.0 404 Not Found"); include("http://{$PDS['site']}/404.php?request="....

How do I view the hierarchy of which Unit USES another? (Delphi)

There is a large project, and I need to see the hierarchy of Units which each file references in it's USES clause. ex. Project Source (program.dpk) HelperUnit Forms ThirdPartyUnit MyUtils MyConsts MyDownload TPShellShoc...

How to add two assemblies with the same name into an asp.net mvc project

I'm using the Facebook Toolkit inside my Asp.net MVC Application. But now I like to use the Facebook c# Sdk as well, exspecially to test, which one works better for me. Sadly they both consist of three assemblies that have the same name: Facebook Facebook.Web Facebook.Web.Mvc How can I still include both in my project? ...

visual c++ - check through what chain of #includes a type gets declared

hey there! is there a way in visual studio to select some type and display how it gets included into the current file? for example i'd like to click on some membervariable SomeType a; and then get displayed something like "first_include.h"->"second_include.h"->"SomeType.h" to understand what chain of includes the compiler uses to t...

Why PHP "require" does not find a file ?

I have the following files structure: temp main index.php a.php b.php Here are the files; index.php echo "index.php ---> " . __DIR__ . "<br />"; require('../a.php'); echo "OK<br />" a.php echo "a.php ---> " . __DIR__ . "<br />"; require('./b.php'); echo "a is here<br />" b.php echo "b is here<br />" W...

Need help with PHP "include" - How to save the path to my website in variable ?

I use the following scheme to include PHP files: require($_SERVER['DOCUMENT_ROOT'] . "Path/To/My/Website/Path/To/My/File.php"); I would like to save $_SERVER['DOCUMENT_ROOT'] . 'Path/To/My/Website' in some variable, say $my_website, and write: require("$my_website/Path/To/My/File.php"); This way, if I decide to change the path ...

Where PHP "set_include_path" is effective ?

I would like to add my_path to include_path and include files relatively to my_path. Is that enough to set the include_path using set_include_path in the main PHP file of my website, or I must do this in every PHP file ? ...

Django template: Why block in included template can't be overwritten by child template?

To illustrate my question more clearly, let's suppose I have a include.html template with content: {% block test_block %}This is include{% endblock %} I have another template called parent.html with content like this: This is parent {% include "include.html" %} Now I create a templated called child.html that extends parent.html: ...

Need a reference for the masm procedures prototyped inside masm32.inc and other .inc files

I have a problem because all though I can see the procedures inside the .inc files most of the actual code as been processed into .lib files. I have tried doing searches inside msdn and the masm hlp files. The win32 api has some of the information neccessary to make correct procedure calls but only for some of the procedures. What I n...

cpp file #include causing errors, @class not

In an iPad app im using a thirdParty cpp file that acts as a controller for some UI functionality; its wired up with IB and a @class definition is all i need. However now I'm trying to set a delegate on the cpp file and therefore have to include it in the implementation of my viewController. including the cpp header in my implementatio...