00001 /******************************************************************************* 00002 * Copyright (c) 2006 International Business Machines Corporation 00003 * All rights reserved. This program and the accompanying materials 00004 * are made available under the terms of the Common Public License v1.0 00005 * which accompanies this distribution, and is available at 00006 * http://www.opensource.org/licenses/cpl1.0.php 00007 * 00008 * Contributors: 00009 * Douglas Sprague, Joel Wheeler - initial API and implementation 00010 * 00011 *****************************************************************************/ 00012 00013 #ifndef COMSTR_H 00014 #define COMSTR_H 00015 00016 #include "stilcom.h" // Common defines, typedefs 00017 #include <string> 00018 #include <assert.h> // Assertion interface 00019 00020 00021 //--------------------------------------------------------------------------- 00024 //--------------------------------------------------------------------------- 00025 #define NUM_STR(l) num_str((l)); 00026 00027 typedef std::string sstring; 00028 00029 sstring num_str(int l); 00030 00031 #endif 00032