~ubuntu-branches/ubuntu/utopic/slic3r/utopic

« back to all changes in this revision

Viewing changes to xs/src/PrintConfig.cpp

  • Committer: Package Import Robot
  • Author(s): Chow Loong Jin
  • Date: 2014-06-17 01:27:26 UTC
  • Revision ID: package-import@ubuntu.com-20140617012726-2wrs4zdo251nr4vg
Tags: upstream-1.1.4+dfsg
ImportĀ upstreamĀ versionĀ 1.1.4+dfsg

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#include "PrintConfig.hpp"
 
2
 
 
3
namespace Slic3r {
 
4
 
 
5
t_optiondef_map PrintConfigDef::def = PrintConfigDef::build_def();
 
6
 
 
7
#ifdef SLIC3RXS
 
8
REGISTER_CLASS(DynamicPrintConfig, "Config");
 
9
REGISTER_CLASS(PrintObjectConfig, "Config::PrintObject");
 
10
REGISTER_CLASS(PrintRegionConfig, "Config::PrintRegion");
 
11
REGISTER_CLASS(PrintConfig, "Config::Print");
 
12
REGISTER_CLASS(FullPrintConfig, "Config::Full");
 
13
#endif
 
14
 
 
15
}