type error in struct?

Below I am getting the compiler error:

src\main.cpp:7:2: error: 'Card_Ranks' does not name a type
Card_Ranks rank;
^
..\src\main.cpp:8:2: error: 'Card_Suit' does not name a type
Card_Suit suit;

Thought Card_Ranks was a type for rank? How do I fix this?

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53

#include<iostream>

using namespace std;

struct Card_Deck
{
	Card_Ranks rank;
	Card_Suit suit;

};
	enum Card_Ranks
		{
			 One,
		     Two,
			 Three,
			 Four,
			 Five,
			 Six,
			 Seven,
			 Eight,
			 Nine,
			 Ten,
			 Jack,
			 King,
			 Queen,
			 Ace
		};

	enum Card_Suit
		{
			Spades = 99,
			Clubs = 1099,
			Diamonds =2500,
			Hearts = 12
		};
//void fill_cards(Cards * n_ptr)
 //{

 //}


int main()
{

	    Card_Deck * n_ptr = new Card_Deck[52];
	   // fill_cards(n_ptr);

	    return 0;

}

Last edited on
Just declare your Card_Deck after Card_Ranks and Card_Suits.
As Thomas says. The compiler needs to know what something is before you try to use it.
enum
..
enum
..
struct

Worked great. I understand why as well. Thx
Forward Declarations
Topic archived. No new replies allowed.