I know this has been asked a billion times before, but I'm still having trouble.
I began with one main.cpp file that contained all of my code. Say it looked like this:
int a = 0;
void foo() {
a+1;
}
void bar() {
a+2;
}
int main() {
foo();
bar();
a + 3;
}
Now I want to split up this code into multiple files for easier management. I would like to only have one header, header.h, and three .cpp files: main.cpp, foo.cpp, and bar.cpp.
ATM, this is what I have:
//header.h
int a = 0;
void foo();
void bar();
.
//foo.cpp
#include "header.h"
void foo() {a+1;}
.
//bar.cpp
#include "header.h"
void bar() {a+2;}
.
//main.cpp
#include "header.h"
int main() {
foo();
bar();
a + 3;
}
Unfortunately, the linker has been complaining that I've defined a multiple times. I've tried using #ifdef, but that only guards against redefining in the same file, correct? How can I make this work?
EDIT: Modified the question, I just realized that it is the variables that have been defined multiple times, not the functions.