602
|
1 |
# Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
|
|
2 |
# All rights reserved.
|
|
3 |
# This component and the accompanying materials are made available
|
|
4 |
# under the terms of the License "Eclipse Public License v1.0"
|
|
5 |
# which accompanies this distribution, and is available
|
|
6 |
# at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
|
7 |
#
|
|
8 |
# Initial Contributors:
|
|
9 |
# Nokia Corporation - initial contribution.
|
|
10 |
#
|
|
11 |
# Contributors:
|
|
12 |
#
|
|
13 |
# Description:
|
|
14 |
#
|
|
15 |
#
|
|
16 |
# Description:
|
|
17 |
# Symbian::CBR::MRPInterface
|
|
18 |
#
|
|
19 |
|
|
20 |
package Symbian::CBR::MRPInterface;
|
|
21 |
|
|
22 |
use strict;
|
|
23 |
use Carp;
|
|
24 |
|
|
25 |
|
|
26 |
sub new {
|
|
27 |
croak 'Error: Call to interface method ' . __PACKAGE__ . "::new\n";
|
|
28 |
}
|
|
29 |
|
|
30 |
sub _new_instance {
|
|
31 |
croak 'Error: Call to interface method ' . __PACKAGE__ . "::_new_instance\n";
|
|
32 |
}
|
|
33 |
|
|
34 |
sub SetIPR {
|
|
35 |
croak 'Error: Call to interface method ' . __PACKAGE__ . "::SetIPR\n";
|
|
36 |
}
|
|
37 |
|
|
38 |
sub SetComponent {
|
|
39 |
croak 'Error: Call to interface method ' . __PACKAGE__ . "::SetComponent\n";
|
|
40 |
}
|
|
41 |
|
|
42 |
sub SetNotesSource {
|
|
43 |
croak 'Error: Call to interface method ' . __PACKAGE__ . "::SetNotesSource\n";
|
|
44 |
}
|
|
45 |
|
|
46 |
sub SetSource {
|
|
47 |
croak 'Error: Call to interface method ' . __PACKAGE__ . "::SetSource\n";
|
|
48 |
}
|
|
49 |
|
|
50 |
sub SetBinary {
|
|
51 |
croak 'Error: Call to interface method ' . __PACKAGE__ . "::SetBinary\n";
|
|
52 |
}
|
|
53 |
|
|
54 |
sub SetExports {
|
|
55 |
croak 'Error: Call to interface method ' . __PACKAGE__ . "::SetExports\n";
|
|
56 |
}
|
|
57 |
|
|
58 |
sub SetExportFile {
|
|
59 |
croak 'Error: Call to interface method ' . __PACKAGE__ . "::SetExportFile\n";
|
|
60 |
}
|
|
61 |
|
|
62 |
sub GetIPRInformation {
|
|
63 |
croak 'Error: Call to interface method ' . __PACKAGE__ . "::GetIPRInformation\n";
|
|
64 |
}
|
|
65 |
|
|
66 |
sub GetExportComponentDependencies {
|
|
67 |
croak 'Error: Call to interface method ' . __PACKAGE__ . "::GetExportComponentDependencies\n";
|
|
68 |
}
|
|
69 |
|
|
70 |
sub ValidateParsing {
|
|
71 |
croak 'Error: Call to interface method ' . __PACKAGE__ . "::Validate\n";
|
|
72 |
}
|
|
73 |
|
|
74 |
sub Populated {
|
|
75 |
croak 'Error: Call to interface method ' . __PACKAGE__ . "::Populated\n";
|
|
76 |
}
|
|
77 |
|
|
78 |
1; |