Header files are used in certain programming languages (like C or C++) to hold information like function prototypes or structure definitions.
0
votes
3answers
33 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 ...
1
vote
1answer
35 views
How to save void * data into a header file?
I am currently working on images and procedurally generate images then convert them into dds or rtc1. Due to constrains of my program, I cannot open external files so I want them embedded with the ...
0
votes
0answers
42 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
vote
3answers
70 views
C++ Compilation Design: Safely extending a class
I have a question about extending already used headers, sources and objects.
Before understanding what I mean you just have to accept that I want to use this design:
In a project of mine, I use only ...
3
votes
1answer
43 views
“‘sockaddr_in’ undeclared (first use in this function)” error despite including the requisite headers
#include <sys/types.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <unistd.h>
#include <arpa/inet.h>
#include <netdb.h>
#include <unistd.h>
...
0
votes
1answer
22 views
How to see which header files were used for gcc/g++ compilation
I have two binaries that were simple c++ programs compiled on a Linux machine. The first binary - call it my_native_prog - uses the build tools (g++, as, etc.), libraries, and headers that come ...
1
vote
1answer
32 views
Define a COM smarter pointer as a member in header file?
I am wondering how to define a COM smart pointer in a header file as a class member? Here is what did:
In .cpp file, I have:
long MyClass:MyFun(long &deviceCount)
{
RESULT h = ...
3
votes
2answers
64 views
Friend Class or Friend member function - Forward declaration and Header inclusion
Yeah the question topic has been discussed so many times. And I'm almost clear about the difference. I've just one doubt related to an example in the book.
This question is related to my previous ...
0
votes
1answer
55 views
Classes from C++ Primer going into Cyclic Dependency
I am following the book - C++ Primer for learning C++. I'm in middle of the chapter introducing classes, and I'm stuck in resolving the header files include of two classes taken as example there.
...
-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 ...
1
vote
2answers
37 views
How do you share a static constant global string between two separate applications in Qt?
I am writing a client and server as separate applications. There are some global strings that both should have access to in order to ensure proper communication between the two. What is the typical ...
0
votes
1answer
42 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 ...
3
votes
1answer
44 views
Does “external declaration or definition” not mean what I think?
17.6.2.2 Headers [using.headers]
3) A translation unit shall include a header only outside of any
external declaration or definition, and shall include the header
lexically before the first ...
1
vote
1answer
39 views
Constant pointers in header files
I have previously encountered the following problem and have been subconsciously avoiding it ever since but have never fully understood why it is happening. Could someone explain to me what is wrong ...
0
votes
1answer
30 views
Where is the code that corresponds to the c standard headers?
I was looking through my root folders in my new ubuntu desktop, and noticed the standard c header files in my include folder(like stdio.h), so i tried to sudo locate stdio.c to no avail. Where are ...
0
votes
2answers
50 views
Python.h header file missing on Mac OS X 10.6
I'm trying to access a shared C library in Python with ctypes on Mac OS X 10.6.8 with Python 2.7.4. To do this, I need to #include <Python.h> in my C code. If I try to compile a C script that ...
0
votes
1answer
22 views
Error: Array bound not integer constant in Header
I have 2D arrays in header files, for which I declared the sizes of both:
int numPaths = 2;
int pathLength = 11;
double x[numPaths][pathLength] = {{62, 114, 0, 73, 55, 21, -28, -93, 0, 0, ...
1
vote
2answers
77 views
How can I let CMake check whether my headers are self-sufficient?
Setup
I have a project that builds and runs fine with CMake. My project setup is like this:
├── CMakeLists.txt
|
├── include/
│ └── standalone/
│ └── x.hpp
|
├── src/
└── standalone/
...
0
votes
0answers
100 views
if we need to add #program once in every head file of C, why the compiler had not do this? [duplicate]
In the head file of C, we need to add #program once or #define XXXX_H to make sure this head will not be include more than once. Do we need to do this in every head file? If not, why the compiler had ...
0
votes
4answers
125 views
Cannot open include file: 'atlbase.h': No such file or directory
Please have a look at the following code
#define _ATL_APARTMENT_THREADED
#include <atlbase.h>
//You may derive a class from CComModule and use it if you want to override something,
//but do ...
2
votes
3answers
112 views
What should and should not be in an Erlang header (.hrl) file?
I'm a bit confused on what an .hrl file should be used for. It's my understanding that .hrl files can contain any valid Erlang code and that using the -include directive will essentially insert the ...
0
votes
1answer
31 views
LNK 1120 + LNK2019 Error
i'm working on a c++ project and have never really used header files before, I am trying to build my project however it is throwing up several linker errors, I have no idea what they are or how to go ...
0
votes
1answer
43 views
C++ annoying included in file two or more data types
I am attempting to handle the problem that I have not encountered before.
I tried this link, but it did no good to me.
Error in system header file /usr/include/i386_types.h
I have attempted to look ...
0
votes
3answers
36 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 ...
1
vote
1answer
55 views
How to run below codes inside the Student.cpp through a class?
// main.cpp
#include <iostream>
#include <vector>
#include <string>
#include "Student.h"
using namespace std;
void fillVector(vector<Student>&);
void printVector(const ...
0
votes
1answer
39 views
For a library, GDB does only see source in header files, whereas source in .cpp files is not available
I am using gdb to debug a program compiled against a static library. Both the library and the program were compiled with debug symbols. For this library, gdb does only see the source code implemented ...
0
votes
0answers
20 views
OS X man pages / documentation for header files
I was just looking at the OS X Man page for utimes. It references a struct timeval. I then wanted to see what that structure looks like. I was able to look at the sys/time.h on my mac to figure that ...
0
votes
1answer
138 views
Cannot open include file: 'jni.h': No such file or directory
I am trying to use the C++ version of voce voice recognition API. It is an API built in Java, with support to C++ as well. However, whenever I am trying to execute it, I am getting the error
...
0
votes
2answers
40 views
Forward Declare a Subclass
I have a Base class A in a header file A.h
class A{};
in A.cpp I have several subclasses:
class B: public A{};
class C: public A{};
I would like to instantiate types B and C in a separate file ...
4
votes
2answers
90 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 ...
-1
votes
1answer
85 views
ANSI C: function already defined in main.obj [closed]
figured it out: "mat.h" wasnt under "Header Files" in the VS solution.
i have 3 files: "main.c", "mat.c", "mat.h".
i declared functions in the header andimplemented them in "mat.c".
i get errors for ...
3
votes
2answers
64 views
Does including unused headers have any impact on code?
Let's say I have a C program which only uses functions from stdio.h.
Now, if I include unwanted headers like stdlib.h, errno.h, etc. and compile the program, then will these unwanted headers have an ...
0
votes
2answers
33 views
Installing Alternative PHP Cache using PECL and Fink
I would like install the Alternative PHP Cache (APC) on my mac.
With PECL this is supposedly a rather painless operation.
All one needs to do is:
sudo pecl install apc
As others have reported on ...
0
votes
1answer
54 views
jni.h and expected ‘=’, ‘,’, ‘;’, ‘asm’ or ‘__attribute__’ before ‘void’
My working environment is mac OSX 10.8.3.
now I'm testing JNI.
I made HelloJNI.java file and execute javac and javah command in terminal.
So I got HelloJNI.java, HelloJNI.class, ...
0
votes
2answers
88 views
Core Audio Tutorial Import-Lines
I found the following tutorial for Core Audio:
http://prasadiphonecode.blogspot.de/2012/09/recording-voice-audio-in-iphone.html
But what has to be imported in the first three lines there?
Because ...
0
votes
2answers
53 views
How to have the compiler put a header file in a source file
I know you can put a header file on top of a file by using the -include compiler flag in gcc, but is it possible to include the header file at the end of other header file declarations of a file. So ...
0
votes
0answers
51 views
build mysql driver for Necessitas (qt-android)
I´m trying to build a mysql driver to use it in a qt-android app.
Now everything seems to be clear but there is a inconsistency in my head.
While i´m compiling the mysql-connector-c source ( 6.0.2 ) ...
0
votes
1answer
34 views
Visual C++ and Allegro5: cannot recognize objects from abstract class from header file
I am a beginner in allegro and not really too well-seasoned with C++, but I have knowledge of the language so I wished to code a chess game. But since I wanted to use images in this game, I looked ...
0
votes
1answer
66 views
Errors trying to compile multiple c++ files with mex for MATLAB
I am using MATLAB under Ubuntu and want to compile a set of 2 c++ files with a header file, using mex. I show a basic example and the errors I am getting.
This code produces the text "hello" from the ...
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 {
...
3
votes
1answer
53 views
g++ is unable to find my header file
So I'm fairly new to c++ so go easy guys.
I'm trying to compile the file q1.cpp but I keep getting the compilation error:
q1.cpp:2:28: fatal error: SavingsAccount.h: No such file or directory
...
0
votes
2answers
81 views
C Program Not Recognizing Constant From Header File
I have the following really simple header file:
#ifndef __ZYNQ_CSORT_H__
#define __ZYNQ_CSORT_H__
#define CONSTANT 5
#endif
I am including this header file in another C file in the same folder. ...
0
votes
0answers
59 views
ICC can't open header file
I am trying to compile a code (not mine; uses C to communicate with cuda) that came with its own makefile, and I'm getting the following error message:
icc -fPIC -vec-report1 -g -O3 ...
0
votes
0answers
37 views
How do I know what c# reference file I need for corresponding c++ header file
I am sure this is not a new question, but i don't know what or where to look at.
I want to convert this c++ program to c#.
...
0
votes
3answers
73 views
How to define global variables in a separate file in C++?
I am writing a school project. In my project there are several functions that work with 20-30 variables. Is there a way I can declare and initialize these global variables in a separate file so my ...
3
votes
1answer
94 views
Missing ';' before 'template<'
So I'm getting a strange error when I'm compiling my program:
Error 1 error C2143: syntax error : missing ';' before ''template<''
I'm doing everything pretty standard; nothing out of the ...
0
votes
0answers
99 views
First defined here multiple definition [closed]
I'm writing a class called Implication, defined by the source and header below:
Header (Implication.h):
#include <iostream>
#include <string>
#include <cstdlib>
#include ...
3
votes
2answers
73 views
Header not refreshed - Visual C++ 2012
Using Visual C++ 2012, without precompiled headers:
When I change a header file that is included in multiple files, the change is not taken into account when building.
If I rebuild all, the change is ...
0
votes
2answers
85 views
Header with memory size definitions
Is there standard C/C++ header with definitions of byte, kilobyte, megabyte, ... ?
I dont want to make own defines. It's dirty in my opinion.
Example:
if (size > MEGABYTE)
{ ... }
1
vote
1answer
31 views
Kernel module with included local sources
Say I have the following structure:
.\
|_ foo.c
|_ inc\
|_ foo_helper.c
|_ foo_helper.h
I want to obtain foo.ko. foo.c should #include <foo_helper.h>. Also, a debug message with ...




