mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-29 08:31:35 -08:00
177 lines
2.5 KiB
C++
177 lines
2.5 KiB
C++
/* Special test file for Semantic Analyzer and complex C++ inheritance.
|
|
*
|
|
* Header file for testsubclass.cpp with class defns but no
|
|
* implementations.
|
|
*/
|
|
|
|
//#include <cmath>
|
|
// #include <stdio.h>
|
|
|
|
#ifndef TESTSUBCLASS_HH
|
|
#define TESTSUBCLASS_HH
|
|
|
|
namespace animal {
|
|
|
|
class moose {
|
|
public:
|
|
moose() : fFeet(0),
|
|
fIsValid(false)
|
|
{ }
|
|
|
|
virtual void setFeet(int);
|
|
int getFeet();
|
|
|
|
void doNothing();
|
|
|
|
enum moose_enum {
|
|
NAME1, NAME2, NAME3 };
|
|
|
|
|
|
protected:
|
|
|
|
bool fIsValid;
|
|
int fIsProtectedInt;
|
|
|
|
private:
|
|
int fFeet; // Usually 2 or 4.
|
|
bool fIsPrivateBool;
|
|
|
|
}; // moose
|
|
|
|
int two_prototypes();
|
|
int two_prototypes();
|
|
|
|
class quadruped {
|
|
public:
|
|
quadruped(int a) : fQuadPrivate(a)
|
|
{ }
|
|
|
|
int fQuadPublic;
|
|
|
|
protected:
|
|
int fQuadProtected;
|
|
|
|
private:
|
|
int fQuadPrivate;
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
namespace deer {
|
|
|
|
class moose : public animal::moose {
|
|
public:
|
|
moose() : fAntlers(false)
|
|
{ }
|
|
|
|
void setAntlers(bool);
|
|
bool getAntlers();
|
|
|
|
void doSomething();
|
|
|
|
protected:
|
|
|
|
bool fSomeField;
|
|
|
|
private:
|
|
bool fAntlers;
|
|
|
|
};
|
|
|
|
} // deer
|
|
|
|
// A second namespace of the same name will test the
|
|
// namespace merging needed to resolve deer::alces
|
|
namespace deer {
|
|
|
|
class alces : public animal::moose {
|
|
public:
|
|
alces(int lat) : fLatin(lat)
|
|
{ }
|
|
|
|
void setLatin(bool);
|
|
bool getLatin();
|
|
|
|
void doLatinStuff(moose moosein); // for completion testing
|
|
|
|
moose createMoose(); // for completion testing.
|
|
|
|
protected:
|
|
bool fAlcesBool;
|
|
int fAlcesInt;
|
|
|
|
private:
|
|
bool fLatin;
|
|
int fGreek;
|
|
};
|
|
|
|
};
|
|
|
|
// A third namespace with classes that does protected and private inheritance.
|
|
namespace sneaky {
|
|
|
|
class antelope : public animal::quadruped {
|
|
|
|
public:
|
|
antelope(int a) : animal::quadruped(),
|
|
fAntyProtected(a)
|
|
{}
|
|
|
|
int fAntyPublic;
|
|
|
|
bool testAccess();
|
|
|
|
protected:
|
|
int fAntyProtected;
|
|
|
|
private :
|
|
int fAntyPrivate;
|
|
|
|
};
|
|
|
|
class jackalope : protected animal::quadruped {
|
|
|
|
public:
|
|
jackalope(int a) : animal::quadruped(),
|
|
fBunny(a)
|
|
{}
|
|
|
|
int fBunnyPublic;
|
|
|
|
bool testAccess();
|
|
|
|
protected:
|
|
bool fBunnyProtected;
|
|
|
|
private :
|
|
bool fBunnyPrivate;
|
|
|
|
};
|
|
|
|
// Nothing specified means private.
|
|
class bugalope : /* private*/ animal::quadruped {
|
|
|
|
public:
|
|
bugalope(int a) : animal::quadruped(),
|
|
fBug(a)
|
|
{}
|
|
|
|
int fBugPublic;
|
|
|
|
bool testAccess();
|
|
protected:
|
|
bool fBugProtected;
|
|
|
|
private :
|
|
bool fBugPrivate;
|
|
|
|
};
|
|
|
|
|
|
};
|
|
|
|
#endif
|
|
|
|
// arch-tag: e292a1d5-5434-4b4d-8e0e-808101ad84b6
|