43 lines
908 B
C++
43 lines
908 B
C++
//----------------------------------------------------------------------------
|
|
//
|
|
// Copyright (C) 2003 Intel Corporation
|
|
//
|
|
// File: CimNamespaces.h
|
|
//
|
|
// Contents: Give full specifications of classes in use with their namespaces.
|
|
//
|
|
//----------------------------------------------------------------------------
|
|
|
|
#ifndef CIMBASICNAMESPACES_H
|
|
#define CIMBASICNAMESPACES_H 1
|
|
|
|
namespace Intel {
|
|
namespace Manageability {
|
|
namespace Exceptions {
|
|
};
|
|
namespace Cim {
|
|
namespace Untyped {
|
|
class CimObject;
|
|
class CimSerializer;
|
|
class CimData;
|
|
class CimParam;
|
|
};
|
|
namespace Utils {
|
|
class Base64;
|
|
class TypeConverter;
|
|
};
|
|
class CimDateTime;
|
|
class CimReference;
|
|
};
|
|
};
|
|
namespace WSManagement {
|
|
struct SubscribeInfo;
|
|
struct ConnectionInfo;
|
|
struct EnumerateFilter;
|
|
struct EnumerateOptions;
|
|
class ICimWsmanClient;
|
|
}
|
|
};
|
|
|
|
#endif // CIMBASICNAMESPACES_H
|