473,769 Members | 2,116 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Problem Multiple definition of enum

57 New Member
Hi

I was implementing BFS and DFS

So I have three class stack,queue,nod e and main class

I have put Node class in Node.h

Expand|Select|Wrap|Line Numbers
  1. #define SIZE_NEIGHBOURS 10
  2. #define SIZE_GRAPH 100
  3. #include<iostream>
  4. enum STATUS{ready=0,waiting=1,processed=2};
  5. class Node
  6.  {
  7.      public:
  8.      char info;
  9.      int distance;
  10.       STATUS node_status;
  11.      Node *adjacent[SIZE_NEIGHBOURS];
  12.      Node *next;
  13.      Node()
  14.      {
  15.         // cout<<"Hui";
  16.          info=0;
  17.          distance=0;
  18.          next=NULL;
  19.          node_status=ready;
  20.          for(int i=0;i<SIZE_NEIGHBOURS;i++)
  21.             adjacent[i]=NULL;
  22.      }
  23.  };
  24.  
I #include"node.h " in both stack and queue headers..

Now when I #include"stack. h" and #include"queue. h" I got an error multiple definition of enuf status. I know the reason that it is defined twice

1) node of stack
2) node of queue
Whats the possible solution to avoid this???Please help...
Mar 30 '10 #1
4 16092
RedSon
5,000 Recognized Expert Expert
Your names are colliding with standard names, please try renaming your class names to something a bit different and try again.
Mar 30 '10 #2
Banfa
9,065 Recognized Expert Moderator Expert
You include files should use multiple include protection mechanisms, the most ubiquitous being use of preprocessor symbols like this

Expand|Select|Wrap|Line Numbers
  1. #ifndef NODE_H_INCLUDED
  2. #define NODE_H_INCLUDED
  3.  
  4. // Declarations and definitions of node.h
  5.  
  6. #endif
  7.  
This will stop the declarations in node.h being processed more than once which is what the problem is.
Mar 30 '10 #3
puneetsardana88
57 New Member
@Redson

It worked earlier with same names

@banfa

I copy pasted the code(of yours) it still gave same error...Now what i did

Expand|Select|Wrap|Line Numbers
  1. #ifndef SIZE_GRAPH
  2. #define SIZE_NEIGHBOURS 10
  3. #define SIZE_GRAPH 100
  4. #include<iostream>
  5. enum STATUS{ready=0,waiting=1,processed=2};
  6. class Node
  7.  {
  8.      public:
  9.      char info;
  10.      int distance;
  11.       STATUS node_status;
  12.      Node *adjacent[SIZE_NEIGHBOURS];
  13.      Node *next;
  14.      Node()
  15.      {
  16.         // cout<<"Hui";
  17.          info=0;
  18.          distance=0;
  19.          next=NULL;
  20.          node_status=ready;
  21.          for(int i=0;i<SIZE_NEIGHBOURS;i++)
  22.             adjacent[i]=NULL;
  23.      }
  24.  };
  25. #endif
  26.  
  27.  
It worked....Can you please tell me what you were saying?Hope I ll learn something...And thanks for your help
Mar 30 '10 #4
puneetsardana88
57 New Member
got the answer

it should be

#ifndef NODE_H
#define NODE_H

Many Thanks to all
Mar 30 '10 #5

Sign in to post your reply or Sign up for a free account.

Similar topics

2
21094
by: Jochen Zeischka | last post by:
Hi everybody! I have a question concerning code organisation. Suppose I have the following header file: #ifndef SOME_NAME #define SOME_NAME namespace N { void F()
11
17833
by: Georg Teichtmeister | last post by:
Hello! We are developing a math - library for realtime applications and want to use some given mathlibraries as base(ipp, MTL, .. ). Our library is a wrapper for those and you should be able to select the underlying library by template parameter. Therefore we split up our library in two namespaces: The first one defines namespace-global functions which call the baselibrary functions. These are templatefunctions which some
2
3287
by: Christian Christmann | last post by:
Hi, I'm using "flex" which is creating a file called lex.yy.c and this C file is added to a library. In another directory I have to use flex for another file and also add the second lex.yy.c to another library. Hence, I need to include both libraries and while linking I get an e.g. "multiple definition of `yyleng'" since yyleng is created in both lexx.yy.c. I can't change the variable name yyleng since it's
2
14532
by: kai | last post by:
Hello, I wrote a little c++-program (hallo world) and I wanted to compile and link this. my steps: 1. set GCC_EXEC_PREFIX=J:\Software\WinProgs\cyggnu\h-i386-cygwin32\lib\gcc-lib\
11
22580
by: lars.uffmann | last post by:
Easily described problem: Using g++ version 3.3.5 under suse 9.3, bla.h: ----------- #ifndef myTEST #define myTEST ZFSInt test; #endif
3
5284
by: Student | last post by:
Hi all, While compiling a program I had this message : tools.o(.data+0x0): multiple definition of `VAR_1' main.o(.data+0x0): first defined here tools.o(.data+0x4): multiple definition of `VAR_2' main.o(.data+0x4): first defined here tools.o(.data+0x8): multiple definition of `VAR_3' main.o(.data+0x8): first defined here tools.o(.data+0xc): multiple definition of `VAR_4'
10
2815
by: zfareed | last post by:
Similar problem to the previous post. I have created a project with about 7 files including 3 header files and 3 implementation files. I am getting a multiple definition error when compiling for one specific file of class. I have checked that if there is more than one allocation of storage for identifiers, this error arises. But I don't see where the problem lies. Any suggestions? <code> //ItemType.h #ifndef ItemType_hpp // I was...
1
1711
by: robinthezhu | last post by:
Hello, I recently ported my code to Tornado 2.2 VxWorks5.5 I finaly got all the projects to build and compile,but in the last stage of the build when I link the application software with the ppc BSP, I get an multiple definition to items associated with the Standard Template Libraries. this did not occur with 2.0. The errors are listed below, any help Please the multi-definition is: __default_alloc_template<true,...
3
3060
by: Antonio Rivas | last post by:
Hello all. I've got a problem of multiple definition in a program that at first glance looks correct (I won't type the whole code, just the relevant one and as examples since seems is a linkage problem): main.cpp ======== using namespace std; ....
0
9579
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
10208
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
10038
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
9987
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
9857
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
1
7404
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
6662
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5294
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
5444
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.