Counter Strike : Global Offensive Source Code
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

58 lines
2.0 KiB

  1. //=========== (C) Copyright 1999 Valve, L.L.C. All rights reserved. ===========
  2. //
  3. // The copyright to the contents herein is the property of Valve, L.L.C.
  4. // The contents may be used and/or copied only with the written permission of
  5. // Valve, L.L.C., or in accordance with the terms and conditions stipulated in
  6. // the agreement/contract under which the contents have been supplied.
  7. //
  8. // $Header: $
  9. // $NoKeywords: $
  10. //
  11. // Main header file for the serializers DLL
  12. //
  13. //=============================================================================
  14. #ifndef DMSERIALIZERS_H
  15. #define DMSERIALIZERS_H
  16. #ifdef _WIN32
  17. #pragma once
  18. #endif
  19. #include "datamodel/dmelement.h"
  20. #include "datamodel/dmattribute.h"
  21. #include "datamodel/dmattributevar.h"
  22. //-----------------------------------------------------------------------------
  23. // Forward declarations
  24. //-----------------------------------------------------------------------------
  25. class IDataModel;
  26. //-----------------------------------------------------------------------------
  27. // Externally defined importers
  28. //-----------------------------------------------------------------------------
  29. void InstallActBusyImporter( IDataModel *pFactory );
  30. void InstallCommentaryImporter( IDataModel *pFactory );
  31. void InstallVMTImporter( IDataModel *pFactory );
  32. void InstallSFMV1Importer( IDataModel *pFactory );
  33. void InstallSFMV2Importer( IDataModel *pFactory );
  34. void InstallSFMV3Importer( IDataModel *pFactory );
  35. void InstallSFMV4Importer( IDataModel *pFactory );
  36. void InstallSFMV5Importer( IDataModel *pFactory );
  37. void InstallSFMV6Importer( IDataModel *pFactory );
  38. void InstallSFMV7Importer( IDataModel *pFactory );
  39. void InstallSFMV8Importer( IDataModel *pFactory );
  40. void InstallSFMV9Importer( IDataModel *pFactory );
  41. void InstallVMFImporter( IDataModel *pFactory );
  42. void InstallMKSImporter( IDataModel *pFactory );
  43. void InstallTEXImporter( IDataModel *pFactory );
  44. void InstallDMXUpdater( IDataModel *pFactory );
  45. void InstallSFMSessionUpdater( IDataModel *pFactory );
  46. void InstallPCFUpdater( IDataModel *pFactory );
  47. #endif // DMSERIALIZERS_H