servlib/DTNServer.cc
changeset 66 e1101c5d54a1
parent 0 2b3e5ec03512
equal deleted inserted replaced
65:333724f2f7cf 66:e1101c5d54a1
    32 #include "contacts/InterfaceTable.h"
    32 #include "contacts/InterfaceTable.h"
    33 #include "contacts/ContactManager.h"
    33 #include "contacts/ContactManager.h"
    34 
    34 
    35 #include "cmd/CompletionNotifier.h"
    35 #include "cmd/CompletionNotifier.h"
    36 #include "cmd/BundleCommand.h"
    36 #include "cmd/BundleCommand.h"
       
    37 #include "cmd/BPQCommand.h"
    37 #include "cmd/InterfaceCommand.h"
    38 #include "cmd/InterfaceCommand.h"
    38 #include "cmd/LinkCommand.h"
    39 #include "cmd/LinkCommand.h"
    39 #include "cmd/ParamCommand.h"
    40 #include "cmd/ParamCommand.h"
    40 #include "cmd/RegistrationCommand.h"
    41 #include "cmd/RegistrationCommand.h"
    41 #include "cmd/RouteCommand.h"
    42 #include "cmd/RouteCommand.h"
   210 {
   211 {
   211     oasys::TclCommandInterp* interp = oasys::TclCommandInterp::instance();
   212     oasys::TclCommandInterp* interp = oasys::TclCommandInterp::instance();
   212 
   213 
   213     CompletionNotifier::create();
   214     CompletionNotifier::create();
   214     interp->reg(new BundleCommand());
   215     interp->reg(new BundleCommand());
       
   216     interp->reg(new BPQCommand());
   215     interp->reg(new InterfaceCommand());
   217     interp->reg(new InterfaceCommand());
   216     interp->reg(new LinkCommand());
   218     interp->reg(new LinkCommand());
   217     interp->reg(new ParamCommand());
   219     interp->reg(new ParamCommand());
   218     interp->reg(new RegistrationCommand());
   220     interp->reg(new RegistrationCommand());
   219     interp->reg(new RouteCommand());
   221     interp->reg(new RouteCommand());