1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
|
/*
FALCON - The Falcon Programming Language.
FILE: vfsprovider.cpp
Generic provider of file system abstraction.
-------------------------------------------------------------------
Author: Giancarlo Niccolai
Begin: Thu, 11 Sep 2008 08:58:33 +0200
-------------------------------------------------------------------
(C) Copyright 2008: the FALCON developers (see list in AUTHORS file)
See LICENSE file for licensing details.
*/
#include <falcon/vfsprovider.h>
namespace Falcon {
VFSProvider::~VFSProvider()
{
}
}
/* end of vsfprovider.cpp */
|