Hi !!!
I have so strange problem... i dont know what i have to do..
Quote from form1.h :
#pragma once
#include "Center.h"
#include <time.h>
#include <windows.h>
namespace RCK {
using namespace System;
using namespace System::ComponentModel;
using namespace System::Collections;
using namespace System::Windows::Forms;
using namespace System::Data;
using namespace System::Drawing;
/// <summary>
/// Summary for Form1
///
/// WARNING: If you change the name of this class, you will need to change the
/// 'Resource File Name' property for the managed resource compiler tool
/// associated with all .resx files this class depends on. Otherwise,
/// the designers will not be able to interact properly with localized
/// resources associated with this form.
/// </summary>
public ref class Form1 : public System::Windows::Forms::Form
{
public:
Form1(void)
{
InitializeComponent();
CCenter^ Engine;
Engine = gcnew CCenter(this);
//
//TODO: Add the constructor code here
//
}
Center.h
#pragma once
#include "StandsQue.h"
#include "Giver.h"
#include "StandsQue.h"
#include "Form1.h"
public ref class CCenter
{
public:
CCenter();
~CCenter(void);
void AddGiver(void);
void Work(void);
void AddStand(System::Int32 StandsNumber);
private:
RCK::Form1 Interfejs;
};
And compiler saying to me :P
1>d:\moje dokumenty\visual studio 2008\projects\rck\rck\Center.h(16) : error C2653: 'RCK' : is not a class or namespace name
Someone know what is this ?? Please...