#ifndef _LLAMANODE_H_ #define _LLAMANODE_H_ /* File: LlamaNode.h UMBC CMSC 341 Fall 2016 Project 1 This file has the class declaration for the LlamaNode class for Project 1. See project description for details. This file should not be modified in ANY way. When your program is graded, it will be compiled with the original version of this file. Your program must work with the original. */ #include using namespace std ; template // forward class declaration class Llama ; template class LlamaNode { friend class Llama ; public: LlamaNode() ; ~LlamaNode() ; static void report() ; private: static int newCount ; // # of times constructor was called static int deleteCount ; // # of times desctructor was called T arr[LN_SIZE] ; LlamaNode *m_next ; } ; #include "LlamaNode.cpp" #endif