diff options
| author | Paul Buetow <paul@buetow.org> | 2013-04-06 13:14:41 +0200 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2013-04-06 13:14:41 +0200 |
| commit | 9cd3ccffd5372dfde3af478e3f832f18db4be3f1 (patch) | |
| tree | 631c295a4a4a16b57502b847626763a279bf6df7 /ychat-0.7.3/src | |
| parent | 13aaf70af703748fe096e0664c305cd202637ad2 (diff) | |
tagging tags
Diffstat (limited to 'ychat-0.7.3/src')
128 files changed, 15164 insertions, 0 deletions
diff --git a/ychat-0.7.3/src/Makefile.in b/ychat-0.7.3/src/Makefile.in new file mode 100755 index 0000000..0382389 --- /dev/null +++ b/ychat-0.7.3/src/Makefile.in @@ -0,0 +1,21 @@ +SRCS=WILLBEADDEDBYCONFIGURE +OBJS=$(addprefix ../obj/,$(SRCS:.cpp=.o)) +CC=WILLBEADDEDBYCONFIGURE +LIBADD=`cat libs.add` +LDFLAGS=$(LIBADD) -lstdc++ +LDADD=-pthread -D_THREAD_SAFE -export-dynamic -ldl +INCLUDES=`cat includes.add` +CFLAGS=-fno-inline -fno-default-inline -frepo +all: ychat +$(SRCS): + $(CC) $(INCLUDES) $(CFLAGS) -c $*.cpp +infotext: + @echo Compiling base +ychat: infotext $(OBJS) + $(CC) $(LDFLAGS) -o $@ $(OBJS) $(LDADD) + @mv ychat ../bin + @echo -n "Size of linked executable: " + @du -hc ../bin/ychat | tail -n 1 +clean: + @echo Cleaning base obj + @if test -d ../obj; then rm -Rf ../obj; fi diff --git a/ychat-0.7.3/src/chat/base.h b/ychat-0.7.3/src/chat/base.h new file mode 100755 index 0000000..ae2e926 --- /dev/null +++ b/ychat-0.7.3/src/chat/base.h @@ -0,0 +1,91 @@ +// template class data declaration; +#include "../incl.h" + +#ifndef BASE_H +#define BASE_H + +#include "../maps/smap.h" + +template<class type> +class base : public smap<type*,string> +{ |
