Ticket #867: calculator.diff
File calculator.diff, 1.8 KB (added by , 18 years ago) |
---|
-
src/apps/calculator/Prefs.cpp
7 7 */ 8 8 #include <StorageKit.h> 9 9 #include <string.h> 10 #include <iostream .h>10 #include <iostream> 11 11 #include "Prefs.h" 12 12 13 13 bool ReadPrefs(const char *prefsname, void *prefs, size_t sz) -
src/apps/calculator/Prefs.h
11 11 bool ReadPrefs(const char *prefsname, void *prefs, size_t sz); 12 12 bool WritePrefs(const char *prefsname, void *prefs, size_t sz); 13 13 14 #endif 15 No newline at end of file 14 #endif 15 -
src/apps/calculator/Jamfile
9 9 CalcWindow.cpp 10 10 FrameView.cpp 11 11 Prefs.cpp 12 : be 12 : be $(TARGET_LIBSTDC++) 13 13 : Calculator.rdef 14 14 ; -
src/apps/calculator/Calculator.cpp
5 5 * Authors: 6 6 * Peter Wagner <pwagner@stanfordalumni.org> 7 7 */ 8 #include <iostream .h>8 #include <iostream> 9 9 10 10 #include <Alert.h> 11 11 #include <Window.h> -
src/apps/calculator/CalcEngine.h
11 11 #include <stdio.h> 12 12 #include <stdlib.h> 13 13 #include <math.h> 14 #include <string.h> 14 15 15 16 typedef unsigned long ulong; 16 17