32 lines
687 B
C++
Raw Normal View History

2016-10-30 18:24:19 +01:00
#include "aaa/bbb/item.hpp"
#include "aaa/item.hpp"
#include "bbb/aaa/item.hpp"
#include "bbb/item.hpp"
#include "ccc/item.hpp"
2019-11-11 23:01:05 +01:00
#include "item.hpp"
#include "object.h"
#include "object.h++"
2020-08-30 11:54:41 +02:00
#include "object.hh"
2019-11-11 23:01:05 +01:00
#include "object.hpp"
#include "object.hxx"
2020-02-01 23:06:01 +01:00
#include "object_upper_ext.H"
2016-10-30 18:24:19 +01:00
int main(int argv, char** args)
{
2019-11-11 23:01:05 +01:00
// Item instances
::Item item;
2016-10-30 18:24:19 +01:00
::aaa::Item aaa_item;
::aaa::bbb::Item aaa_bbb_item;
::bbb::Item bbb_item;
::bbb::aaa::Item bbb_aaa_item;
::ccc::Item ccc_item;
2019-11-11 23:01:05 +01:00
// Object instances
::Object_h obj_h;
2020-08-30 11:54:41 +02:00
::Object_hh obj_hh;
2019-11-11 23:01:05 +01:00
::Object_hplpl obj_hplpl;
::Object_hpp obj_hpp;
::Object_hxx obj_hxx;
2020-02-01 23:06:01 +01:00
::Object_Upper_Ext_H obj_upper_ext_h;
2016-10-30 18:24:19 +01:00
return 0;
}