///#################################################################
/// PROJECT : CASA - Common Authentication Services Adapter
/// FILE : Store.cs
/// DESCRIPTION : A parent class that abstracts the store classes.
/// AUTHORS : CSL.Manojna
/// UPDATED ON : 21 Sept, 05
///#################################################################
namespace Novell.CASA.GUI {
using System;
using Gtk;
using Glade;
public abstract class Store
{
///#######################################################################
///
/// Clears the TreeStore and invokes ReadStore() to aggregate
/// respective stores.
///
public abstract void AggregateStore();
///#######################################################################
///
///
///
public abstract void ViewKeyValues();
}
}
///##################################################################
/// END OF FILE
///##################################################################