Multiple header includes in form application error

Apr 10, 2016 at 5:17pm
Hi, I have a form application that has two header includes, such as...

#pragma once
#include "CommunicationDLL.h"
#include "MathDLL.h"

However, like this i can only access the functions from the first include and not the other. Then when its like this...

#pragma once
#include "MathDLL.h"
#include "CommunicationDLL.h"

I can only access the functions from the first one and not the second. Why does this happen?
Apr 10, 2016 at 6:59pm
> Why does this happen?
Because your headers are awfully designed.
Apr 10, 2016 at 7:02pm
Topic archived. No new replies allowed.