Panda3D
pal_string_utils.h
1 // Filename: pal_string_utils.h
2 // Created by: drose (30Nov00)
3 //
4 ////////////////////////////////////////////////////////////////////
5 //
6 // PANDA 3D SOFTWARE
7 // Copyright (c) Carnegie Mellon University. All rights reserved.
8 //
9 // All use of this software is subject to the terms of the revised BSD
10 // license. You should have received a copy of this license along
11 // with this source code in a file named "LICENSE."
12 //
13 ////////////////////////////////////////////////////////////////////
14 
15 #ifndef PAL_STRING_UTILS_H
16 #define PAL_STRING_UTILS_H
17 
18 #include "pandatoolbase.h"
19 #include "string_utils.h"
20 
21 class PNMFileType;
22 
23 void extract_param_value(const string &str, string &param, string &value);
24 
25 bool parse_image_type_request(const string &word, PNMFileType *&color_type,
26  PNMFileType *&alpha_type);
27 
28 #endif
29 
This is the base class of a family of classes that represent particular image file types that PNMImag...
Definition: pnmFileType.h:35