source: trunk/packages/vizservers/nanovis/Command.h @ 3935

Last change on this file since 3935 was 3613, checked in by ldelgass, 11 years ago

Include namespace in header guard defines

  • Property svn:eol-style set to native
File size: 1.7 KB
Line 
1/* -*- mode: c++; c-basic-offset: 4; indent-tabs-mode: nil -*- */
2/*
3 * Copyright (c) 2004-2013  HUBzero Foundation, LLC
4 *
5 * Authors:
6 *   Wei Qiao <qiaow@purdue.edu>
7 *   Insoo Woo <iwoo@purdue.edu>
8 *   George A. Howlett <gah@purdue.edu>
9 *   Leif Delgass <ldelgass@purdue.edu>
10 */
11#ifndef NV_COMMAND_H
12#define NV_COMMAND_H
13
14#include <tcl.h>
15
16#include <RpBuffer.h>
17
18#include "ResponseQueue.h"
19
20namespace Rappture {
21class Buffer;
22}
23
24namespace nv {
25
26class ReadBuffer;
27class Volume;
28
29#ifdef USE_THREADS
30extern void queueResponse(const void *bytes, size_t len,
31                          Response::AllocationType allocType,
32                          Response::ResponseType type = Response::DATA);
33#else
34extern ssize_t SocketWrite(const void *bytes, size_t len);
35#endif
36
37extern bool SocketRead(char *bytes, size_t len);
38
39extern bool SocketRead(Rappture::Buffer &buf, size_t len);
40
41extern int processCommands(Tcl_Interp *interp,
42                           ReadBuffer *inBufPtr,
43                           int fdOut);
44
45extern int handleError(Tcl_Interp *interp,
46                       int status,
47                       int fdOut);
48
49extern void initTcl(Tcl_Interp *interp, ClientData clientData);
50
51extern int GetAxisFromObj(Tcl_Interp *interp, Tcl_Obj *objPtr,
52                          int *axisVal);
53
54extern int GetBooleanFromObj(Tcl_Interp *interp, Tcl_Obj *objPtr,
55                             bool *boolVal);
56
57extern int GetDataStream(Tcl_Interp *interp, Rappture::Buffer &buf, int nBytes);
58
59extern int GetFloatFromObj(Tcl_Interp *interp, Tcl_Obj *objPtr,
60                           float *floatVal);
61
62extern int GetVolumeFromObj(Tcl_Interp *interp, Tcl_Obj *objPtr,
63                            Volume **volume);
64
65}
66
67#endif
Note: See TracBrowser for help on using the repository browser.