yast2-storage

Y2StorageCallbacksComponent.h

Go to the documentation of this file.
00001 /*
00002  * Copyright (c) [2004-2009] Novell, Inc.
00003  *
00004  * All Rights Reserved.
00005  *
00006  * This program is free software; you can redistribute it and/or modify it
00007  * under the terms of version 2 of the GNU General Public License as published
00008  * by the Free Software Foundation.
00009  *
00010  * This program is distributed in the hope that it will be useful, but WITHOUT
00011  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
00012  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for
00013  * more details.
00014  *
00015  * You should have received a copy of the GNU General Public License along
00016  * with this program; if not, contact Novell, Inc.
00017  *
00018  * To contact Novell about this file by physical or electronic mail, you may
00019  * find current contact information at www.novell.com.
00020  */
00021 
00022 
00023 
00024 #include <y2/Y2Namespace.h>
00025 #include <y2/Y2Component.h>
00026 
00027 class Y2StorageCallbacksComponent : public Y2Component
00028 {
00029 public:
00030     virtual Y2Namespace *import (const char* name);
00031 
00032     virtual string name () const { return "StorageCallbacks"; }
00033 
00034     static Y2StorageCallbacksComponent* instance();
00035 
00036 private:
00037     static Y2StorageCallbacksComponent* m_instance;
00038 };
00039