Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7490945
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 29, 20262026-05-29T15:47:39+00:00 2026-05-29T15:47:39+00:00

I have a test class declared in a header file and defined in a

  • 0

I have a test class declared in a header file and defined in a separate file. The class must compile differently under Windows, so i use #if defined ( _WINDOWS_ ). When I compile the cpp file which also contains #if defined ( _WINDOWS_ ), the file is compiled as if the symbol _WINDOWS_ was not defined, although it is defined in another file. When I compile the code, I am getting the following error:

Error Code : error lnk2019 unresolved external symbol public

source code

// test.h

class Test
{
public:
#if defined (_WINDOWS_)

void printwindow();
#endif

void notwindows();
}; 

//test.cpp

#include "test.h"

 #if defined (_WINDOWS_)
void Test::printwindow()
{
cout << "i am windows ";
}
 #endif


void test::notwindows()
{
cout << " not windows " ;
}


//main.cpp

#include "windows.h"
#include "test.h"

void main()
{
test t1 ; 

t1.printwindow()  // OK I have declared function so my _WINDOWS_ is available but when i run it i get
}

Error Code : error lnk2019 unresolved external symbol public

NOTE : if i define the function directly it works without any problem

// test.h

    class Test
    {
    public:
    #if defined (_WINDOWS_)

    void printwindow(){couT << "i am window" }
    #endif

    void notwindows();
    };

but I don’t like this method. I prefer to define them in separate files (h and cpp).

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-29T15:47:40+00:00Added an answer on May 29, 2026 at 3:47 pm

    It would be better for you to use _WIN32 instead of _WINDOWS_ for your conditional compilation test. _WINDOWS_ is defined only if windows.h has been included, while the compiler automatically defines _WIN32 for any build for a Windows target, regardless of what headers are included. In your situation, _WINDOWS_ is defined when you compile main.cpp but not when you compile test.cpp becuase test.cpp doesn’t include windows.h.

    Also, the _WINDOWS_ macro definition is an implementation detail of the windows.h header, and is not guaranteed to be used. For example, the MinGW version of windows.h does not define _WINDOWS_.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have following test class @RunWith(SpringJUnit4ClassRunner.class) @ContextConfiguration(locations = {/services-test-config.xml}) public class MySericeTest { @Autowired
say I have: class Test { public static int Hello = 5; } This
I have a JUnit test class in which I have several static final int
If I have a class called Test :: class Test { static std::vector<int> staticVector;
I have a unit test (example is modified Test::Unit documentation ) require 'test/unit' class
I need to have a dynamic URL preferably from a Test Class. Can any
i have the following class test hash={} def printHash puts hash[1] puts hash[2] puts
I have a class which looks something like this: public class Test { private
I have the following example class: Test.h: @interface Test : UIButton { NSString *value;
I have the following code: public class Test { public static void Main() {

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.