source: trunk/packages/vizservers/vtkvis/RpVtkRendererCmd.h @ 3360

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

First pass at handling user level errors in vtkvis.

  • Property svn:eol-style set to native
File size: 847 bytes
Line 
1/* -*- mode: c++; c-basic-offset: 4; indent-tabs-mode: nil -*- */
2/*
3 * Copyright (C) 2004-2012  HUBzero Foundation, LLC
4 *
5 * Author: Leif Delgass <ldelgass@purdue.edu>
6 */
7
8#ifndef __RAPPTURE_VTKVIS_RENDERERCMD_H__
9#define __RAPPTURE_VTKVIS_RENDERERCMD_H__
10
11#include <cstdio>
12#include <tcl.h>
13
14#include "ReadBuffer.h"
15
16namespace Rappture {
17namespace VtkVis {
18
19extern int processCommands(Tcl_Interp *interp,
20                           ClientData clientData,
21                           ReadBuffer *inBufPtr,
22                           int fdOut);
23
24extern int handleError(Tcl_Interp *interp,
25                       ClientData clientData,
26                       int status,
27                       int fdOut);
28
29extern void initTcl(Tcl_Interp *interp,
30                    ClientData clientData);
31
32extern void exitTcl(Tcl_Interp *interp);
33
34}
35}
36
37#endif
Note: See TracBrowser for help on using the repository browser.