EMAN2
grid_queue2.h
Go to the documentation of this file.
1// Copyright (C) 2005-2008 Washington University in St Louis, Baylor College of Medicine. All rights reserved
2// Author: Tao Ju, Refactored by Sasakthi S. Abeysinghe (sasakthi@gmail.com)
3// Description: Grid queue
4
5#ifndef SKELETON_MAKER_GRID_QUEUE2_H
6#define SKELETON_MAKER_GRID_QUEUE2_H
7
8#include "grid_queue.h"
9
10namespace wustl_mm {
11 namespace SkeletonMaker {
12
14 {
15 public:
16 GridQueue2();
19 void reset();
20 int getNumElements();
21 void prepend(int xx, int yy, int zz);
24 private:
29 int numEles ;
30 };
31
32 }
33}
34#endif
void prepend(int xx, int yy, int zz)
Definition: grid_queue2.cpp:55