Fix renaming misses.

This commit is contained in:
Penn, John M 047828115 2019-08-19 16:57:46 -05:00
parent d966f21f51
commit 2998180231
2 changed files with 3 additions and 3 deletions

View File

@ -7,7 +7,7 @@ LIBRARY DEPENDENCIES:
#include <iomanip> // for setprecision
#include "trick/memorymanager_c_intf.h"
#include "trick/exec_proto.h"
#include "../include/WSSession.hh"
#include "../include/VariableServerSession.hh"
#include "../include/simpleJSON.hh"
VariableServerSession::VariableServerSession( struct mg_connection *nc ) : WebSocketSession(nc) {

View File

@ -2,7 +2,7 @@
PURPOSE: (Represent the state and initial conditions of an http server)
LIBRARY DEPENDENCIES:
(
(WSSession.o)
(VariableServerSession.o)
(WSSessionVariable.o)
(http_GET_handlers.o)
)
@ -35,7 +35,7 @@ Messages sent from Server to Client
*/
#include "../include/http_server.hh"
#include "../include/WSSession.hh"
#include "../include/VariableServerSession.hh"
#include "../include/http_GET_handlers.hh"
static const struct mg_str s_get_method = MG_MK_STR("GET");