/****************************************************************************/
/*									    */
/*  Copyright 2006, by Pocomatic Software, LLC.	All Rights Reserved.        */
/*									    */
/****************************************************************************/
#ifndef _MyMovieFinder2_H
# define _MyMovieFinder2_H

#include "MovieFinder.h"

#include <pocodefs.h> // for the macro POCO_EXPORT -- to export on Windows

class POCO_EXPORT MyMovieFinder2 : public MovieFinder {
	MyMovieFinder2() {}
  public:
	static MovieFinder* create();
	const Movie* findAll();
};

#endif

