23 int main(
int argc,
char* argv[]) {
26 if(argc < 2)
return 0;
28 std::fstream fileStream(inFileName.c_str());
29 if(!fileStream.good())
return -1;
31 importer(fileStream, inFileName);
39 std::fstream xdlExport(outFileName.c_str(), std::ios_base::out);
41 fileExporter(designPtr);
DesignSharedPtr getDesignPtr(void)
Returns a shared pointer for the design.
Main torc::physical namespace header.
boost::filesystem::path path
boost::shared_ptr< Design > DesignSharedPtr
Shared pointer encapsulation of a Design.
Importer from XDL format into a physical design.
Physical design exporter for XDL.
int main(int argc, char *argv[])
Standard main() function.