0
votes
3answers
49 views

C++ proper way for solve this inheritence include issue “already has a body”?

Heyo, I have a question about this issue I am having in C++. I am new to C++ and learning. I have experience in object oriented programming so I am looking for the correct way and solve this issue and ...
0
votes
0answers
44 views

Undefined reference to the function

It seems that I can't compile my project because of some linking error, but I can't find it. I have a parser class where methods from a scanner class are used. And complier marks every entry of any ...
-1
votes
2answers
39 views

Include error.Functions already declared

I've read a lot for this problem ,but I haven't found a proper solution. So i have 4 files: includes.h - which contains all libraries I need in other files + some global functions cities.h - which ...
0
votes
1answer
44 views

Arduino & C: put a function and global variable in external file

This should be a simple problem. I'm trying to split up code into two files within a sketch: test.ino: void setup(){} void loop(){ fn(); } test.c: char myChar = '?'; void fn(){ myChar++; } I've ...
0
votes
3answers
37 views

Management of lot of #include statements and header files

In my current project. A lot of my .cpp and .h files have plenty of includes in them such as 6 or 7 of headers declared in the following manner. #ifndef A_Header #include "a.h" #endif #ifndef ...
4
votes
2answers
92 views

Collect common includes in a single file - good practice?

I am trying to learn how to deal with a lot of includes, and still keep my code tidy. I am programming a Qt application and I have put files commonly used (and that doesn't change) in a file called ...
0
votes
5answers
80 views

C++ Redefinitions - Header files [closed]

I am a complete beginner at C++ and what might seem stupidly obvious to you I just cannot get my head around. Testapp.h #ifndef TESTAPP_H #define TESTAPP_H using namespace std; class Testapp { ...
0
votes
4answers
47 views

Using #define with the same identifier in many classes lead to “error: <ID> redefined”

I'm using a helper class to log messages in the android ndk in an easy way. It works like that: LOGE("ClassTag", "Message"); Since I don't want to write the tag manually every time I want to log ...
0
votes
3answers
62 views

C++ headers redefining/declaring mixup

I'm trying to abstract out a method from a simple program. This method tests the length of an array against a predeclared CAPACITY constant, and spits out an error message if conditions aren't met. ...
0
votes
3answers
94 views

Trouble with including functions in c++

I am new to c++ and I can't figure out why my headers are not working correctly. If I include the function fitzhough() from the main file, everything works perfectly. However, if I try to add it as a ...
0
votes
3answers
102 views

Pros/ Cons of using one big include file

I've got a personal project, which I doubt would exceed 20 pairs of header/cpp files. I was wondering whether it would be better to have each header and cpp file include the other files that it needs ...
-1
votes
2answers
56 views

Including a file in other file when the file is already included c++

I've been woeking on chess project and I've encoutered some critical error. Piece.h: #include "Board.h" class Piece{...}; since I've included Board.h already in Piece my Board file looks like this ...
6
votes
4answers
209 views

Difference Between includes and imports [duplicate]

Possible Duplicate: What is the difference between #import and #include in Objective-C? What is the difference between #include< > #include" " #import< > #import" "
0
votes
1answer
166 views

Qt Creator refuses to execute Custom python program as a build step command

I'm writing a shared library, and in order to update the header files in my /usr/include dir, I wrote a python program to compare and keep the header files from the source directory up to date in the ...
-1
votes
1answer
227 views

How to include a .c file within another .c elegantly

I have a subfolder1/Submain.c { //initialize statements CallFunction1(); } subfolder2/Submain.c { //initialize statements CallFunction2(); } and so on. In the MainFolder there is a ...
2
votes
2answers
183 views

How do you include a header file that may or may not exist?

Let's assume I define BAR in foo.h. But foo.h might not exist. How do I include it, without the compiler complaining at me? #include "foo.h" #ifndef BAR #define BAR 1 #endif int main() { ...
0
votes
2answers
40 views

Making one header to be needed for several classes inclusion

I have a number of classes and they are quite close to each other like class A { //code }; class B { A* field; //code }; class C: public B { //code }; And so on. And I want to place them in a ...
1
vote
1answer
409 views

Why is Visual Studio 2010 including a header file twice?

I have been having these really odd problems with Visual Studio 2010. At this point, the behavior is so erratic that I really wish I did not have to use it for CUDA (I know I don't have to, but it is ...
1
vote
4answers
129 views

C++ checking headers are self-sufficient

Are there tools that will parse a C++ project and decide whether the header files are self sufficient: i.e. if a file Foo.cc (or Foo.h) mentions some class Bar (e.g. vector) then it itself includes ...
0
votes
1answer
765 views

compiling header file using opencv. Own class definition

I have been searching but could not find something clear for my doubt. I am trying to define my own class in c++, my class uses the libraries from opencv. I create a file.h file where I just declare ...
1
vote
3answers
2k views

stdio inclusion in a header file

I'm not totally sure but this looks wrong: I have a header file named fraction.h in which I store a fraction structure and the methods to handle it, one method is used to write a fraction in a file ...
0
votes
1answer
436 views

sal.h not including when it is in Path

I'm working on implementing DirectSound into a program, but it requires dsound.h which requires sal.h, and for whatever reason I'm having trouble getting g++ to recognize the fact that I have sal.h ...
0
votes
1answer
725 views

Struct from one header file in another header file

I'm going trought this really quite long time and still don't see where could be the poblem. Let's have header file Player.h #ifndef PLAYER_H_ #define PLAYER_H_ typedef struct player { char ...
1
vote
5answers
822 views

How to “uninclude” a header file?

I have a class in the file AType.h and it is implemented in AType.cpp. # include "PrivateType.h" class AType{ private: int a, b, c; PrivateType varX; public: ... }; I want to ...
1
vote
1answer
218 views

What is causing ld: duplicate symbol

ld: duplicate symbol StringFunctions::intToString(int) in /Build/Intermediates/Y36PJC-mrvikmil.build/Debug/Y36PJC-mrvikmil.build/Objects-normal/x86_64/ServerSocket.o and ...
1
vote
4answers
341 views

C++ Object references as member variables of objects

I'm kinda new to C++ and I've run into a problem with setting up the main architecture. I learned how to use this specific architecture in C#, but I can't get it to work in C++. My problem is as ...
1
vote
6answers
433 views

Combining C++ header files

Is there an automated way to take a large amount of C++ header files and combine them in a single one? This operation must, of course, concatenate the files in the right order so that no types, etc. ...
0
votes
3answers
112 views

C Header Files with the same declarations but different implmentations

I have two sets of header files and .c files in my project i will only ever be including one of these headers but i want the option to quickly swap the header im including. Both header files have some ...
1
vote
2answers
295 views

Including headers just for private data in a .h file

I have a class defined in class.cpp and class.h. The class uses some structures/classes/types/whatever defined in stuff.h (and of course, stuff.cpp) for private members and methods. My main program is ...
1
vote
8answers
2k views

Mutual include in C++ .. how does it work? [duplicate]

Possible Duplicate: Proper way to #include when there is a circular dependency? I am pretty new to C++ and have the question asked in the title. Or more precisely: If A.h includes B.h and ...
4
votes
6answers
526 views

C++ including a “.h” file, function duplication confusion

I'm currently writing a program, and couldn't figure out why I got an error (note: I already fixed it, I'm curious about WHY the error was there and what this implies about including .h files). ...
1
vote
2answers
341 views

Which one of these headers comes from MSVCR100.DLL?

I'm working on a cpp app, works fine on the virtual machine im developing but in my laptop (XP without c++ redistributable package) it shows an error saying the app needs MSVCR100.DLL and it's not in ...
-1
votes
3answers
126 views

help about place of header file in C [duplicate]

Possible Duplicate: #include in .h or .c / .cpp ? Can anyone explain to me the difference between including a C header file in another header file or C source file in C ? How can the ...
11
votes
6answers
2k views

Is the backslash acceptable in C and C++ #include directives?

There are two path separators in common use: the Unix forward-slash and the DOS backslash. Rest in peace, Classic Mac colon. If used in an #include directive, are they equal under the rules of the ...
4
votes
2answers
2k views

How to exclude some of the “unable to open include file *.h” errors in pclint

I am using PC lint in my project. My project is compatible to build in both windows and linux. So i have used windows header(visualstudio) files and linux header files(gcc) in my project. I am running ...
2
votes
3answers
818 views

How to list all included header files by a c file (preferably in Vim)

Is there a way to see all the header files included by a c file. Lets say a c file contians only one header file, but that header file includes 10 header files, and those 10 include further more ...
5
votes
3answers
548 views

How to see the actual order of include files after preprocessing?

I have one .cpp file that includes a few header files. These header files may include other header files as well. Include guards are in place to prevent including the same file twice. Knowing that ...
8
votes
3answers
785 views

Include File Ordering Strategy

I've seen fairly consistent advice that an implementation file (.cc / .cpp) should include its corresponding class definition file first, before including other header files. But when the topic ...
2
votes
2answers
1k views

C++ cyclic inclusion issue

I have this file logger.hpp: #ifndef _LOGGER_HPP_ #define _LOGGER_HPP_ #include "event.hpp" // Class definitions class Logger { public: /*! * Constructor */ Logger(); /*! ...
3
votes
5answers
282 views

Distribution of many small classes

I have a base class called EventArgs. Derived from this are many, many specializations that represent event arguments for a particular kind of event. Consumers of these events may need some, many, ...
0
votes
2answers
315 views

Avoid adding “include paths” for headers that are not directly #included

Suppose I have two vc++ project, proj_a and proj_b proj_a contains a header file a.h proj_b has dependency on proj_a. It contains file b.h that does #include <a.h>. I add a.h's directory in ...
3
votes
4answers
3k views

Basic stucture of a C/C++ project (header files and cpp files)

This is a brain-dead newbie question, but here goes: What determines what files get included in a C/C++ project? My understanding is that the compiler starts with the file that has main() in it and ...
2
votes
3answers
998 views

undefined reference errors in C++

I have files Record.h and Record.cpp. When I just include the Record.h file, I get several undefined reference errors to functions defined in those files. When I also include Record.cpp then the ...
3
votes
3answers
4k views

XCode can't find headers in /usr/include

I'm trying to use standard system header files in my C++ XCode project: #include <openssl/bio.h> #include <openssl/ssl.h> #include <openssl/err.h> The build fails and it ...
3
votes
4answers
14k views

Declaring struct in header file

I've been trying to include a structure called "student" in a student.h file, but I'm not quite sure how to do it. My student.h file code consists of entirely: #include<string> using namespace ...
4
votes
5answers
817 views

Should '#include' and 'using' statements be repeated in both header and implementation files (C++)?

I'm fairly new to C++, but my understanding is that a #include statement will essentially just dump the contents of the #included file into the location of that statement. This means that if I have a ...
5
votes
4answers
6k views

fatal error C1014: too many include files : depth = 1024

I have no idea what this means. But here is the code that it supposely is happening in. //======================================================================================= // d3dApp.cpp by ...
7
votes
7answers
3k views

C++ include header conventions

Suppose I have a file X.h which defines a class X, whose methods are implemented in X.cc. The file X.h includes a file Y.h because it needs Y to define class X. In X.cc, we can refer to Y because X.h ...
2
votes
4answers
11k views

Xcode cannot find #Include<> header

I'm trying to get Xcode to import the header file for Irrlicht. #include <irrlicht.h> It says "Irrlicht.h. No such file or directory". Yes Irrlicht.h with a capital I, even though the ...
1
vote
6answers
2k views

How do compilers know where to find #include <stdio.h>?

I am wondering how compilers on Mac OS X, Windows and Linux know where to find the C header files. Specifically I am wondering how it knows where to find the #include with the <> brackets. ...

1 2