Added svn:ignore properties. Now, the files added by the autoconf & automake scripts...
authorspenap <bulfaiter@gmail.com>
Tue, 27 Oct 2009 19:50:07 +0000 (19:50 +0000)
committerspenap <bulfaiter@gmail.com>
Tue, 27 Oct 2009 19:50:07 +0000 (19:50 +0000)
To get the same configuration, you have to type

$svn propset svn:ignore -F .svnignore .

Added some diagrams, too: those found in the garage site. Added the sources to generate them using the online UML site
we found, and a README with the URL

There's also an examples folder, but there's no Makefile.am there, yet, so the sample should be compiled using

$g++ `pkg-config rest --libs --cflags` gtranslate.cpp -o gtranslate

Any other -o name is ok, but the .svnignore file just deals with that name. Will fix it :)

git-svn-id: file:///svnroot/maevies/trunk@3 a96798e0-47ce-444a-94a4-1d14e63744fc

src/IMovieInfoProvider.h
src/IMovieStingerProvider.h
src/Makefile.am
src/WATCProvider.cpp
src/WATCProvider.h

index 4e1acee..7a8bfcf 100644 (file)
@@ -1,12 +1,12 @@
 /*
  * This file is part of Maevies
  * Copyright (C) 2009 Simón Pena
- * 
+ *
  * This program is free software; you can redistribute it and/or
  * modify it under the terms of the GNU General Public License as
  * published by the Free Software Foundation; either version 3 of the
  * License, or (at your option) any later version.
- * 
+ *
  * This program is distributed in the hope that it will be useful, but
  * WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
@@ -16,8 +16,7 @@
 #ifndef IMOVIEINFOPROVIDER_H
 #define IMOVIEINFOPROVIDER_H
 
-class IMovieInfoProvider
-{
+class IMovieInfoProvider {
 };
 
 #endif
index c553fdc..d900f2d 100644 (file)
@@ -1,12 +1,12 @@
 /*
  * This file is part of Maevies
  * Copyright (C) 2009 Simón Pena
- * 
+ *
  * This program is free software; you can redistribute it and/or
  * modify it under the terms of the GNU General Public License as
  * published by the Free Software Foundation; either version 3 of the
  * License, or (at your option) any later version.
- * 
+ *
  * This program is distributed in the hope that it will be useful, but
  * WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 #ifndef IMOVIESTINGERPROVIDER_H
 #define IMOVIESTINGERPROVIDER_H
 
-class IMovieStingerProvider
-{
-       public:
-               virtual int stingersCount()=0;
+#include <glib.h>
+
+class IMovieStingerProvider {
+public:
+       virtual gboolean hasStingers()=0;
 };
 
 #endif
index bfd55ae..5be42e4 100644 (file)
@@ -18,7 +18,12 @@ bin_PROGRAMS = maevies
 
 maevies_SOURCES = main.cpp \
                      mywindow.cpp \
-                     mywindow.h
+                     mywindow.h \
+                     WATCProvider.cpp \
+                     WATCProvider.h \
+                     IMovieStingerProvider.h
+                     
+                     
 
 maevies_LDADD = $(LIBHILDONMM_LIBS) $(LIBOSSO_LIBS)
 maevies_CXXFLAGS = $(LIBHILDONMM_CFLAGS) $(LIBOSSO_CFLAGS) -DHELLOWORLD_LOCALEDIR=\"${HELLOWORLD_LOCALEDIR}\"
index 52a2903..f259cf7 100644 (file)
@@ -1,21 +1,17 @@
 /*
- * This file is part of Maevies
- * Copyright (C) 2009 Simón Pena
- * 
- * This program is free software; you can redistribute it and/or
- * modify it under the terms of the GNU General Public License as
- * published by the Free Software Foundation; either version 3 of the
- * License, or (at your option) any later version.
- * 
- * This program is distributed in the hope that it will be useful, but
- * WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
- * General Public License for more details.
+ * WATCProvider.cpp
  *
+ *  Created on: 26-oct-2009
+ *      Author: spenap
  */
+
 #include "WATCProvider.h"
 
-int WATCProvider::stingersCount()
-{
-       return 0;
+WATCProvider::WATCProvider() {
+       // TODO Auto-generated constructor stub
+
+}
+
+WATCProvider::~WATCProvider() {
+       // TODO Auto-generated destructor stub
 }
index bcc2c4a..1b4b2c5 100644 (file)
@@ -1,27 +1,20 @@
 /*
- * This file is part of Maevies
- * Copyright (C) 2009 Simón Pena
- * 
- * This program is free software; you can redistribute it and/or
- * modify it under the terms of the GNU General Public License as
- * published by the Free Software Foundation; either version 3 of the
- * License, or (at your option) any later version.
- * 
- * This program is distributed in the hope that it will be useful, but
- * WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
- * General Public License for more details.
+ * WATCProvider.h
  *
+ *  Created on: 26-oct-2009
+ *      Author: spenap
  */
-#ifndef WATCPROVIDER_H
-#define WATCPROVIDER_H
+
+#ifndef WATCPROVIDER_H_
+#define WATCPROVIDER_H_
 
 #include "IMovieStingerProvider.h"
+#include <rest/rest/rest-proxy-call.h>
 
-class WATCProvider : IMovieStingerProvider
-{
-       public:
-               int stingersCount();
+class WATCProvider: public IMovieStingerProvider {
+public:
+       WATCProvider();
+       virtual ~WATCProvider();
 };
 
-#endif
+#endif /* WATCPROVIDER_H_ */