1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
|
//----------------------------------------------------------------------------//
// Includes
//----------------------------------------------------------------------------//
#include <iostream>
#include <string>
#include "All.h"
#include "UtilFoundation.h"
#include "UtilPlainOldDataType.h"
#include "OgIAttribute.h"
#include "OgOAttribute.h"
#include "OgIDataset.h"
#include "OgODataset.h"
#include "OgIGroup.h"
#include "OgOGroup.h"
//----------------------------------------------------------------------------//
// To Do
//----------------------------------------------------------------------------//
/*
x Only explicitly allow certain data types.
x All hell will break loose if we don't stick to int64_t, etc.
*/
//----------------------------------------------------------------------------//
|