1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
|
// This file may be redistributed and modified only under the terms of
// the GNU Lesser General Public License (See COPYING for details).
// Copyright (C) 2003 Al Riddoch
// This test verifies that the forward declarations in ObjectsFwd.h
// match the real declarations in the other headers.
#include <Atlas/Objects/ObjectsFwd.h>
#include <Atlas/Objects/Encoder.h>
#include <Atlas/Objects/Decoder.h>
#include <Atlas/Objects/Dispatcher.h>
#include <Atlas/Objects/Operation.h>
#include <Atlas/Objects/Entity.h>
int main()
{
return 0;
}
|