27 lines
557 B
C++
27 lines
557 B
C++
//----------------------------------------------------------------------------
|
|
//
|
|
// Copyright (C) 2003 Intel Corporation
|
|
//
|
|
// File: CimNamespaces.h
|
|
//
|
|
// Contents: Give full specifications of classes in use with their namespaces.
|
|
//
|
|
//----------------------------------------------------------------------------
|
|
|
|
#ifndef CIMNAMESPACES_H
|
|
#define CIMNAMESPACES_H 1
|
|
|
|
#include "CimBasicNamespaces.h"
|
|
|
|
namespace Intel {
|
|
namespace Manageability {
|
|
namespace Cim {
|
|
namespace Typed {
|
|
class CimBase;
|
|
};
|
|
};
|
|
};
|
|
};
|
|
|
|
#endif // CIMNAMESPACES_H
|