28 lines
730 B
C++
28 lines
730 B
C++
// Filename: imageBase.cxx
|
|
// Created by: drose (19Jun00)
|
|
//
|
|
////////////////////////////////////////////////////////////////////
|
|
|
|
#include "imageBase.h"
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
// Function: ImageBase::Constructor
|
|
// Access: Public
|
|
// Description:
|
|
////////////////////////////////////////////////////////////////////
|
|
ImageBase::
|
|
ImageBase() {
|
|
}
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
// Function: ImageBase::post_command_line
|
|
// Access: Protected, Virtual
|
|
// Description:
|
|
////////////////////////////////////////////////////////////////////
|
|
bool ImageBase::
|
|
post_command_line() {
|
|
return ProgramBase::post_command_line();
|
|
}
|
|
|